home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / rewind.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  238b  |  17 lines

  1. /* something like the origonal
  2.  * from Dale Schumacher's dLibs
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <unistd.h>
  7.  
  8. void
  9. rewind(fp)
  10.   register FILE *fp;
  11. {
  12.   fflush(fp);
  13.   (void) lseek(fp->_file, 0L, SEEK_SET);
  14.   fp->_flag &= ~(_IOEOF|_IOERR);
  15. }
  16.  
  17.